home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / gfx / show / svoUtah22.lha / svoUtahRLE / source / URT / include / rle_config.h < prev    next >
C/C++ Source or Header  |  1993-01-09  |  707b  |  37 lines

  1. /***************** From rle_config.tlr *****************/
  2.  
  3. #define CONST_DECL
  4. #define NEED_SETLINEBUF
  5. #define NO_OPEN_PIPES
  6. #define USE_PROTOTYPES
  7. #define USE_RANDOM
  8. #define USE_STDARG
  9. #define USE_STDLIB_H
  10. #define USE_STRING_H
  11. #define VOID_STAR
  12.  
  13. #ifdef AMIGA
  14. #include <string.h>
  15.  
  16. #ifndef __SASC_60
  17. #define bcopy(from, to, size)    memcpy((to), (from), (size))
  18. #define bzero(to, size)        memset((to), 0, (size))
  19. #define bcmp(a, b, size)    memcmp((a), (b), (size))
  20. #endif
  21. #endif
  22.  
  23. /* CONST_DECL must be defined as 'const' or nothing. */
  24. #ifdef CONST_DECL
  25. #undef CONST_DECL
  26. #define CONST_DECL const
  27.  
  28. #else
  29. #define CONST_DECL
  30.  
  31. #endif
  32.  
  33. /* A define for getx11. */
  34. #ifndef XLIBINT_H
  35. #define XLIBINT_H_NOT_AVAILABLE
  36. #endif
  37.